home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / scrn.lbr / SCRN.DOC < prev   
Text File  |  1985-06-03  |  2KB  |  50 lines

  1. PROGRAM: SCRN.COM
  2.  
  3. GENERAL FUNCTION: To blank screen after set period of inactivity.
  4.  
  5. WHY IS IT NEEDED?  An image left on a screen can burn into the
  6. phosphor, producing faint background images.
  7.  
  8. INSTALLATION: Run once after each time reboot.
  9.  
  10. FORMAT:                   SCRN N
  11.  
  12. EXAMPLES:                 SCRN 7    [blank screen after 7 minutes inactivity]
  13.  
  14. HOW TO USE IT:  Put it in an AUTOEXEC.BAT file.  The minutes can be any
  15. single digit from 1-9.  If no time is specified, will blank after 10 minutes.
  16.  
  17. OTHER EFFECTS: Blanked screen can be restored by striking a key: e.g. alt
  18. key.
  19.  
  20. SYSTEM REQUIREMENTS:  Works with DOS 1.1 and 2.X.  Works with all
  21. monitors.
  22.  
  23. COMMENTS:  This program is a major enhancement over previous versions.
  24. It satisfies the following design criteria.
  25.  
  26.      1. Must turn "both" color and monochrome monitors off, not
  27.        just the active monitor on two monitor systems.
  28.     2. Must function in a single monitor envirnoment with either
  29.        monitor attached.
  30.     3. Must be extremely frugal in execution.  Since this routine
  31.        will be executed at each timer interrupt,or 18.2 times/sec,
  32.        and at each keyboard interrupt the routine must have the
  33.        minimum of overhead so as not to degrade system performance.
  34.     4. Must be able blank background on color monitor as well as
  35.        foreground text or graphics.
  36.     5. Should utilize the User Exit Interrupt provided in the
  37.        Timer Routine. [INT 1C] (This can be considered optional)
  38.     6. Handle the blanking of the cursor on the Monochrome display
  39.        more efficiently.
  40.     7. Output to the Monitor(s) should reset the timeout counter
  41.        within the delay window but not turn the video back on if
  42.        a timeout has occurred.
  43.     8. Optional Parameter to set Delay Interval from 1 to 10 min.
  44.  
  45. SOURCE OF PROGRAM: J.T. Thannum
  46. 
  47. a timeout has occurred.
  48.     8. Optional Parameter to set Delay Interval from 1 to 10 min.
  49.  
  50.